home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Mark Pilgrim / Fade Me 1.1 / source / sdf code ƒ / show init.h < prev   
Encoding:
C/C++ Source or Header  |  1994-10-30  |  1.4 KB  |  41 lines  |  [TEXT/KAHL]

  1. /**********************************************************************\
  2.  
  3. File:        show init.h
  4.  
  5. Purpose:    This is the header file for show init.c
  6.  
  7. Note:        This file was not written by the author of Shutdown Fade
  8.             and is not subject to the terms of the GNU General Public
  9.             License.
  10.             
  11.  
  12. Shutdown Fade -=- fade the screen to black on shutdown
  13. Copyright (C) 1993 Mark Pilgrim
  14.  
  15. This program is free software; you can redistribute it and/or modify
  16. it under the terms of the GNU General Public License as published by
  17. the Free Software Foundation; either version 2 of the License, or
  18. (at your option) any later version.
  19.  
  20. This program is distributed in the hope that it will be useful,
  21. but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. GNU General Public License for more details.
  24.  
  25. You should have received a copy of the GNU General Public License
  26. along with this program in a file named "GNU General Public License".
  27. If not, write to the Free Software Foundation, 675 Mass Ave,
  28. Cambridge, MA 02139, USA.
  29.  
  30. \**********************************************************************/
  31.  
  32. #define        GOOD_ICON                128
  33. #define        BAD_ICON                129
  34.  
  35. void ShowIconFamily(short);
  36. void GetIconRect(register Rect* iconRect);
  37. Handle ChooseIcon(short iconId, short* suggestedDepth);
  38.  
  39. #define    ShowBadICON()    ShowIconFamily(BAD_ICON)
  40. #define    ShowGoodICON()    ShowIconFamily(GOOD_ICON)
  41.